home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / uemacs-3.000 / uemacs-3 / uemacs-3.8 / epath.h,v < prev    next >
Encoding:
Text File  |  1995-09-22  |  966 b   |  97 lines

  1. head    1.1;
  2. access;
  3. symbols;
  4. locks
  5.     moss:1.1; strict;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.1
  10. date    95.09.22.23.19.57;    author moss;    state Exp;
  11. branches;
  12. next    ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/*    PATH:    This file contains certain info needed to locate the
  25.         MicroEMACS files on a system dependant basis.
  26.  
  27.                                     */
  28.  
  29. /*    possible names and paths of help files under different OSs    */
  30.  
  31. char *pathname[] =
  32.  
  33. #if    AMIGA
  34. {
  35.     ".emacsrc",
  36.     "emacs.hlp",
  37.     "",
  38.     ":c/",
  39.     ":t/"
  40. };
  41. #endif
  42.  
  43. #if    ST520
  44. {
  45.     "emacs.rc",
  46.     "emacs.hlp",
  47.     "\\",
  48.     "\\bin\\",
  49.     "\\util\\",
  50.     ""
  51. };
  52. #endif
  53.  
  54. #if    FINDER
  55. {
  56.     "emacs.rc",
  57.     "emacs.hlp",
  58.     "/bin",
  59.     "/sys/public",
  60.     ""
  61. };
  62. #endif
  63.  
  64. #if    MSDOS
  65. {
  66.     "emacs.rc",
  67.     "emacs.hlp",
  68.     "\\sys\\public\\",
  69.     "\\usr\\bin\\",
  70.     "\\bin\\",
  71.     "\\",
  72.     ""
  73. };
  74. #endif
  75.  
  76. #if    V7 | BSD | USG
  77. {
  78.     ".emacsrc",
  79.     "emacs.hlp",
  80.     "/usr/local/",
  81.     "/usr/lib/",
  82.     ""
  83. };
  84. #endif
  85.  
  86. #if    VMS
  87. {
  88.     "emacs.rc",
  89.     "emacs.hlp",
  90.     "",
  91.     "sys$sysdevice:[vmstools]"
  92. };
  93. #endif
  94.  
  95. #define    NPNAMES    (sizeof(pathname)/sizeof(char *))
  96. @
  97.